home *** CD-ROM | disk | FTP | other *** search
- function onEnterFrame()
- {
- if(this.hitTest(_parent._parent._parent.STAGE))
- {
- if(this.hitTest(_parent._parent.HERO.body))
- {
- _parent._parent.function_newParticle(this._x,this._y,"Class_Particle",5);
- _parent._parent._parent.STAGE.newSound("Sound_Fruit");
- _parent._parent.itemCollect = _parent._parent.itemCollect + 1;
- this.swapDepths(0);
- this.removeMovieClip();
- }
- }
- }
- gotoAndStop(random(6) + 1);
-